Self-Driving Car Engineer Nanodegree

Deep Learning

Project: Build a Traffic Sign Recognition Classifier

In this notebook, a template is provided for you to implement your functionality in stages, which is required to successfully complete this project. If additional code is required that cannot be included in the notebook, be sure that the Python code is successfully imported and included in your submission if necessary.

Note: Once you have completed all of the code implementations, you need to finalize your work by exporting the iPython Notebook as an HTML document. Before exporting the notebook to html, all of the code cells need to have been run so that reviewers can see the final implementation and output. You can then export the notebook by using the menu above and navigating to \n", "File -> Download as -> HTML (.html). Include the finished document along with this notebook as your submission.

In addition to implementing code, there is a writeup to complete. The writeup should be completed in a separate file, which can be either a markdown file or a pdf document. There is a write up template that can be used to guide the writing process. Completing the code template and writeup template will cover all of the rubric points for this project.

The rubric contains "Stand Out Suggestions" for enhancing the project beyond the minimum requirements. The stand out suggestions are optional. If you decide to pursue the "stand out suggestions", you can include the code in this Ipython notebook and also discuss the results in the writeup file.

Note: Code and Markdown cells can be executed using the Shift + Enter keyboard shortcut. In addition, Markdown cells can be edited by typically double-clicking the cell to enter edit mode.


Step 0: Load The Data

In [77]:
import pickle
import tensorflow as tf
import matplotlib.pyplot as plt
import numpy as np
import cv2
import random
from tensorflow.contrib.layers import flatten
from sklearn.utils import shuffle
from numpy import newaxis
from scipy import ndimage
import pandas as pd
In [78]:
# Load pickled data

# TODO: Fill this in based on where you saved the training and testing data
training_file = './traffic-signs-data/train.p'
validation_file= './traffic-signs-data/valid.p'
testing_file = './traffic-signs-data/test.p'

with open(training_file, mode='rb') as f:
    train = pickle.load(f)
with open(validation_file, mode='rb') as f:
    valid = pickle.load(f)
with open(testing_file, mode='rb') as f:
    test = pickle.load(f)
    
X_train, y_train = train['features'], train['labels']
X_valid, y_valid = valid['features'], valid['labels']
X_test, y_test = test['features'], test['labels']
In [79]:
print(X_train.shape)
print(y_train.shape)
print(train.keys())
(34799, 32, 32, 3)
(34799,)
dict_keys(['labels', 'sizes', 'coords', 'features'])
In [80]:
Coords_train, sizes_train = train['coords'], train['labels']
print(Coords_train.shape)
print(sizes_train.shape)
(34799, 4)
(34799,)
In [81]:
print(y_train)
[41 41 41 ..., 25 25 25]

Step 1: Dataset Summary & Exploration

The pickled data is a dictionary with 4 key/value pairs:

  • 'features' is a 4D array containing raw pixel data of the traffic sign images, (num examples, width, height, channels).
  • 'labels' is a 1D array containing the label/class id of the traffic sign. The file signnames.csv contains id -> name mappings for each id.
  • 'sizes' is a list containing tuples, (width, height) representing the original width and height the image.
  • 'coords' is a list containing tuples, (x1, y1, x2, y2) representing coordinates of a bounding box around the sign in the image. THESE COORDINATES ASSUME THE ORIGINAL IMAGE. THE PICKLED DATA CONTAINS RESIZED VERSIONS (32 by 32) OF THESE IMAGES

Complete the basic data summary below. Use python, numpy and/or pandas methods to calculate the data summary rather than hard coding the results. For example, the pandas shape method might be useful for calculating some of the summary results.

Provide a Basic Summary of the Data Set Using Python, Numpy and/or Pandas

In [82]:
print(len(X_train))
34799
In [83]:
### Replace each question mark with the appropriate value. 
### Use python, pandas or numpy methods rather than hard coding the results

# TODO: Number of training examples
n_train = X_train.shape[0]

# TODO: Number of validation examples
n_valid = X_valid.shape[0]

# TODO: Number of testing examples.
n_test = X_test.shape[0]

# TODO: What's the shape of an traffic sign image?
image_shape = X_train[0].shape

# TODO: How many unique classes/labels there are in the dataset.
n_classes = len(set(train['labels']))

print("Number of training examples =", n_train)
print("Number of validation examples =", n_valid)
print("Number of testing examples =", n_test)
print("Image data shape =", image_shape)
print("Number of classes =", n_classes)
Number of training examples = 34799
Number of validation examples = 4410
Number of testing examples = 12630
Image data shape = (32, 32, 3)
Number of classes = 43

Include an exploratory visualization of the dataset

Visualize the German Traffic Signs Dataset using the pickled file(s). This is open ended, suggestions include: plotting traffic sign images, plotting the count of each sign, etc.

The Matplotlib examples and gallery pages are a great resource for doing visualizations in Python.

NOTE: It's recommended you start with something simple first. If you wish to do more, come back to it after you've completed the rest of the sections. It can be interesting to look at the distribution of classes in the training, validation and test set. Is the distribution the same? Are there more examples of some classes than others?

In [84]:
df_signnames = pd.read_csv('signnames.csv')
print(df_signnames.shape)
print(df_signnames[:10])
print(df_signnames.loc[df_signnames['ClassId']==6, 'SignName'].iloc[0])
(43, 2)
   ClassId                     SignName
0        0         Speed limit (20km/h)
1        1         Speed limit (30km/h)
2        2         Speed limit (50km/h)
3        3         Speed limit (60km/h)
4        4         Speed limit (70km/h)
5        5         Speed limit (80km/h)
6        6  End of speed limit (80km/h)
7        7        Speed limit (100km/h)
8        8        Speed limit (120km/h)
9        9                   No passing
End of speed limit (80km/h)
In [85]:
def get_singname(df_signnames, classId):
    return df_signnames.loc[df_signnames['ClassId']==classId, 'SignName'].iloc[0]

def get_all_signnames():
    return df_signnames.values

all_sign = get_all_signnames()
print(all_sign)
[[0 'Speed limit (20km/h)']
 [1 'Speed limit (30km/h)']
 [2 'Speed limit (50km/h)']
 [3 'Speed limit (60km/h)']
 [4 'Speed limit (70km/h)']
 [5 'Speed limit (80km/h)']
 [6 'End of speed limit (80km/h)']
 [7 'Speed limit (100km/h)']
 [8 'Speed limit (120km/h)']
 [9 'No passing']
 [10 'No passing for vehicles over 3.5 metric tons']
 [11 'Right-of-way at the next intersection']
 [12 'Priority road']
 [13 'Yield']
 [14 'Stop']
 [15 'No vehicles']
 [16 'Vehicles over 3.5 metric tons prohibited']
 [17 'No entry']
 [18 'General caution']
 [19 'Dangerous curve to the left']
 [20 'Dangerous curve to the right']
 [21 'Double curve']
 [22 'Bumpy road']
 [23 'Slippery road']
 [24 'Road narrows on the right']
 [25 'Road work']
 [26 'Traffic signals']
 [27 'Pedestrians']
 [28 'Children crossing']
 [29 'Bicycles crossing']
 [30 'Beware of ice/snow']
 [31 'Wild animals crossing']
 [32 'End of all speed and passing limits']
 [33 'Turn right ahead']
 [34 'Turn left ahead']
 [35 'Ahead only']
 [36 'Go straight or right']
 [37 'Go straight or left']
 [38 'Keep right']
 [39 'Keep left']
 [40 'Roundabout mandatory']
 [41 'End of no passing']
 [42 'End of no passing by vehicles over 3.5 metric tons']]

Display Signs randomly

In [86]:
### Data exploration visualization code goes here.
### Feel free to use as many code cells as needed.
import matplotlib.pyplot as plt
# Visualizations will be shown in the notebook.
%matplotlib inline



#DISPLAY 25 random images
signimage = []
examples = plt.figure()
examples.set_figwidth(10)
examples.set_figheight(10)
for i in range(25):
    img = examples.add_subplot(5, 5, i + 1)
    image = X_train[random.randint(0,len(X_train) - 1)].squeeze()
    img.imshow(image)
    
    

Display Signs According to the Class

In [87]:
%matplotlib inline
def plot_images(X, y,example_per_lable=15, squeeze=False, cmap=None ):
    bincount_per_label = np.bincount(y)  # the count array of each class/lable
    all_sign = get_all_signnames()
    for sign in get_all_signnames():
        sign_id = sign[0]
        sign_name = sign[1]
        count = bincount_per_label[sign_id]  #sign[0] is class index
        print("{0} {1}     count: {2}".format(sign_id, sign_name, count))
        lable_indices = np.where(y==sign_id)[0]
        
        #randomly take 15 examples from each lable/class 
        random_samples_indices = random.sample(list(lable_indices), example_per_lable)
        fig = plt.figure(figsize=(example_per_lable, 1))  
        fig.subplots_adjust(hspace=0, wspace=0)
        for i in range(example_per_lable):
            image = X[random_samples_indices[i]]
            axis = fig.add_subplot(1, example_per_lable, i+1, xticks=[], yticks=[])
            if squeeze: image = image.squeeze()
            if(cmap == None): axis.imshow(image)
            else: axis.imshow(image.squeeze(), cmap=cmap)
        plt.show()
        
        
In [88]:
plot_images(X_train, y_train)
0 Speed limit (20km/h)     count: 180
1 Speed limit (30km/h)     count: 1980
2 Speed limit (50km/h)     count: 2010
3 Speed limit (60km/h)     count: 1260
4 Speed limit (70km/h)     count: 1770
5 Speed limit (80km/h)     count: 1650
6 End of speed limit (80km/h)     count: 360
7 Speed limit (100km/h)     count: 1290
8 Speed limit (120km/h)     count: 1260
9 No passing     count: 1320
10 No passing for vehicles over 3.5 metric tons     count: 1800
11 Right-of-way at the next intersection     count: 1170
12 Priority road     count: 1890
13 Yield     count: 1920
14 Stop     count: 690
15 No vehicles     count: 540
16 Vehicles over 3.5 metric tons prohibited     count: 360
17 No entry     count: 990
18 General caution     count: 1080
19 Dangerous curve to the left     count: 180
20 Dangerous curve to the right     count: 300
21 Double curve     count: 270
22 Bumpy road     count: 330
23 Slippery road     count: 450
24 Road narrows on the right     count: 240
25 Road work     count: 1350
26 Traffic signals     count: 540
27 Pedestrians     count: 210
28 Children crossing     count: 480
29 Bicycles crossing     count: 240
30 Beware of ice/snow     count: 390
31 Wild animals crossing     count: 690
32 End of all speed and passing limits     count: 210
33 Turn right ahead     count: 599
34 Turn left ahead     count: 360
35 Ahead only     count: 1080
36 Go straight or right     count: 330
37 Go straight or left     count: 180
38 Keep right     count: 1860
39 Keep left     count: 270
40 Roundabout mandatory     count: 300
41 End of no passing     count: 210
42 End of no passing by vehicles over 3.5 metric tons     count: 210

Plot the histogram for distribution of traffic signs

In [112]:
def plot_histogram(y_data, nclasses, title):
    mybins = np.linspace(-0.5,n_classes - 0.5,n_classes+1)
    hist,bins = np.histogram(y_data,mybins)
    center = (bins[:-1] + bins[1:]) / 2
    plt.bar(center,hist)
    plt.title(title)
    plt.xlabel("Sign Index")
    plt.ylabel("# of signes")
    plt.show()

   
plot_histogram(y_train,n_classes,"Training Dataset")
plot_histogram(y_valid,n_classes,"Validation Dataset")
plot_histogram(y_test,n_classes, "Test Dataset")

    

Step 2: Design and Test a Model Architecture

Design and implement a deep learning model that learns to recognize traffic signs. Train and test your model on the German Traffic Sign Dataset.

The LeNet-5 implementation shown in the classroom at the end of the CNN lesson is a solid starting point. You'll have to change the number of classes and possibly the preprocessing, but aside from that it's plug and play!

With the LeNet-5 solution from the lecture, you should expect a validation set accuracy of about 0.89. To meet specifications, the validation set accuracy will need to be at least 0.93. It is possible to get an even higher accuracy, but 0.93 is the minimum for a successful project submission.

There are various aspects to consider when thinking about this problem:

  • Neural network architecture (is the network over or underfitting?)
  • Play around preprocessing techniques (normalization, rgb to grayscale, etc)
  • Number of examples per label (some have more than others).
  • Generate fake data.

Here is an example of a published baseline model on this problem. It's not required to be familiar with the approach used in the paper but, it's good practice to try to read papers like these.

Pre-process the Data Set (normalization, grayscale, etc.)

Minimally, the image data should be normalized so that the data has mean zero and equal variance. For image data, (pixel - 128)/ 128 is a quick way to approximately normalize the data and can be used in this project.

Other pre-processing steps are optional. You can try different techniques to see if it improves performance.

Use the code cell (or multiple code cells, if necessary) to implement the first step of your project.

In [90]:
### Preprocess the data here. It is required to normalize the data. Other preprocessing steps could include 
### converting to grayscale, etc.
### Feel free to use as many code cells as needed.
#GRAYSCALE function
def grayscale(img):
    img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
    img = img.reshape(32,32,1)
    return(img)

#NORMALIZE function
def normalize(data):
    return (data - 128.0) / 128.0

#PROCESS function (applies above two functions to an array of images)
def processimage(images):
    gray_images = []
    for image in images:
        temp = grayscale(image)
        gray_images.append(temp)
    return np.array(gray_images)
In [91]:
#ROTATE image for data augmentation
def rotate(image):
    image = ndimage.rotate(image, random.randint(-10,10), reshape=False)
    return (image)
    
#SHEAR image (future implementation)
def shear(image):
    print("Sheared!")
    
#TRANSLATE image (future implementation)
def translate(image):
    print("Translated!")

#TRANSFORM an image, take an image and randomly apply a shear, rotate, or translate to it.
def transformimage(image):
    #ran = random.randint(0,2)
    ran = 0
    if ran == 0:
        image = rotate(image)
    elif ran == 1:
        image = shear(image)
    else:
        image = translate(image)
    return image
In [92]:
#AUGMENT Data Classes with rotated images
class_pics = np.bincount(y_train)
new_x = []
new_y = []
max_images = 2200
for i in range(len(class_pics)):
    if class_pics[i] < max_images:
        new = max_images - class_pics[i]
        pics_in_class = np.where(y_train == i)
        for j in range(new):
            new_x.append(transformimage(X_train[pics_in_class][random.randint(0,class_pics[i] - 1)]))
            new_y.append(i)
X_train_augmented = np.append(X_train, np.array(new_x), axis=0)
y_train_augmented = np.append(y_train, np.array(new_y), axis=0)
print("Done augmenting data")

#PreProcess X_train data (apply gray scale and normalize data)
X_train_processed = processimage(X_train_augmented)
X_train_processed = normalize(X_train_processed)

#PreProcess X_test data (apply gray scale and normalize data)
X_test_processed = processimage(X_test)
X_test_processed = normalize(X_test_processed)

#PreProcess X_valid data (apply gray scale and normalize data)
X_valid_processed = processimage(X_valid)
X_valid_processed = normalize(X_valid_processed)
print("Done processing data")
Done augmenting data
Done processing data
In [93]:
print(X_train_processed.shape)
print(y_train_augmented.shape)
(94600, 32, 32, 1)
(94600,)
In [109]:
#SAVE images for Writeup
random_indx = random.randint(0,len(X_train_augmented) - 1)
plt.figure()
plt.imshow(X_train_augmented[random_indx])
print(y_train_augmented[random_indx])
plt.figure()
plt.imshow(X_train_processed[random_indx].squeeze(), cmap='gray')
11
Out[109]:
<matplotlib.image.AxesImage at 0x23b83c7c4e0>
In [95]:
print(X_train_processed.shape)
print(y_train_augmented.shape)
plt.hist(y_train_augmented, bins = n_classes)
(94600, 32, 32, 1)
(94600,)
Out[95]:
(array([2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00,
        2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00,
        2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00,
        2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00,
        2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00,
        2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00, 2200.00,
        2200.00]),
 array([0.00, 0.98, 1.95, 2.93, 3.91, 4.88, 5.86, 6.84, 7.81, 8.79, 9.77,
        10.74, 11.72, 12.70, 13.67, 14.65, 15.63, 16.60, 17.58, 18.56,
        19.53, 20.51, 21.49, 22.47, 23.44, 24.42, 25.40, 26.37, 27.35,
        28.33, 29.30, 30.28, 31.26, 32.23, 33.21, 34.19, 35.16, 36.14,
        37.12, 38.09, 39.07, 40.05, 41.02, 42.00]),
 <a list of 43 Patch objects>)
In [96]:
#Display pre-processed image
plot_images(X_train_processed, y_train, squeeze=True,  cmap='gray')
0 Speed limit (20km/h)     count: 180
1 Speed limit (30km/h)     count: 1980
2 Speed limit (50km/h)     count: 2010
3 Speed limit (60km/h)     count: 1260
4 Speed limit (70km/h)     count: 1770
5 Speed limit (80km/h)     count: 1650
6 End of speed limit (80km/h)     count: 360
7 Speed limit (100km/h)     count: 1290
8 Speed limit (120km/h)     count: 1260
9 No passing     count: 1320
10 No passing for vehicles over 3.5 metric tons     count: 1800
11 Right-of-way at the next intersection     count: 1170
12 Priority road     count: 1890
13 Yield     count: 1920
14 Stop     count: 690
15 No vehicles     count: 540
16 Vehicles over 3.5 metric tons prohibited     count: 360
17 No entry     count: 990
18 General caution     count: 1080
19 Dangerous curve to the left     count: 180
20 Dangerous curve to the right     count: 300
21 Double curve     count: 270
22 Bumpy road     count: 330
23 Slippery road     count: 450
24 Road narrows on the right     count: 240
25 Road work     count: 1350
26 Traffic signals     count: 540
27 Pedestrians     count: 210
28 Children crossing     count: 480
29 Bicycles crossing     count: 240
30 Beware of ice/snow     count: 390
31 Wild animals crossing     count: 690
32 End of all speed and passing limits     count: 210
33 Turn right ahead     count: 599
34 Turn left ahead     count: 360
35 Ahead only     count: 1080
36 Go straight or right     count: 330
37 Go straight or left     count: 180
38 Keep right     count: 1860
39 Keep left     count: 270
40 Roundabout mandatory     count: 300
41 End of no passing     count: 210
42 End of no passing by vehicles over 3.5 metric tons     count: 210

Model Architecture

In [97]:
#VARIABLES
EPOCHS = 10
BATCH_SIZE = 128
rate = 0.005
mu = 0
sigma = 0.1

#PLACEHOLDERS and OneHot
x = tf.placeholder(tf.float32, (None, 32, 32, 1))
y = tf.placeholder(tf.int32, (None))
keep = tf.placeholder(tf.float32)
one_hot_y = tf.one_hot(y, 43)

def LeNet(x):    
    
    # input, and output:  4D (batch_size, height, width, depth)
    # The shape of the filter weight is (height, width, input_depth, output_depth)
    # The shape of the filter bias is (output_depth,) 
    # stride for each dimension (batch_size, height, width, depth)
    # output_height = (input_height - filter_height + 2 * P)/S + 1
    # output_width = (input_width - filter_width + 2 * P)/S + 1
    
    #  Layer 1: Convolutional. Input = 32x32x1. Output = 28x28x6.
    conv1_W = tf.Variable(tf.truncated_normal(shape=(5, 5, 1, 6), mean = mu, stddev = sigma))
    conv1_b = tf.Variable(tf.zeros(6))
    conv1   = tf.nn.conv2d(x, conv1_W, strides=[1, 1, 1, 1], padding='VALID') + conv1_b

    #  Activation.
    conv1 = tf.nn.relu(conv1)

    #  Pooling. Input = 28x28x6. Output = 14x14x6.  
    # Pooling wiht stride 2, reduce output size to half of input
    conv1 = tf.nn.max_pool(conv1, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='VALID')

    #  Layer 2: Convolutional. Input = 14x14x6, Output = 10x10x16.
    conv2_W = tf.Variable(tf.truncated_normal(shape=(5, 5, 6, 16), mean = mu, stddev = sigma))
    conv2_b = tf.Variable(tf.zeros(16))
    conv2   = tf.nn.conv2d(conv1, conv2_W, strides=[1, 1, 1, 1], padding='VALID') + conv2_b
    
    #  Activation.
    conv2 = tf.nn.relu(conv2)

    #  Pooling. Input = 10x10x16. Output = 5x5x16.
    conv2 = tf.nn.max_pool(conv2, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='VALID')

    #  Flatten. Input = 5x5x16. Output = 400.
    fc0   = flatten(conv2)
    
    #  Layer 3: Fully Connected. Input = 400. Output = 200.
    # fc1_W = tf.Variable(tf.truncated_normal(shape=(400, 120), mean = mu, stddev = sigma))
    fc1_W = tf.Variable(tf.truncated_normal(shape=(400, 200), mean = mu, stddev = sigma))
    fc1_b = tf.Variable(tf.zeros(200))
    fc1   = tf.matmul(fc0, fc1_W) + fc1_b
    
    #  Activation.
    fc1    = tf.nn.relu(fc1)
    
    #DROPOUT
    fc1 = tf.nn.dropout(fc1, keep)

    # Layer 4: Fully Connected. Input = 120. Output = 100.
    fc2_W  = tf.Variable(tf.truncated_normal(shape=(200, 100), mean = mu, stddev = sigma))
    fc2_b  = tf.Variable(tf.zeros(100))
    fc2    = tf.matmul(fc1, fc2_W) + fc2_b
    
    # SOLUTION: Activation.
    fc2    = tf.nn.relu(fc2)
    
    #DROPOUT
    fc2 = tf.nn.dropout(fc2, keep)

    #  Layer 5: Fully Connected. Input = 100. Output = 43.
    fc3_W  = tf.Variable(tf.truncated_normal(shape=(100,43), mean = mu, stddev = sigma))
    fc3_b  = tf.Variable(tf.zeros(43))
    logits = tf.matmul(fc2, fc3_W) + fc3_b
    
    return logits
In [98]:
logits = LeNet(x)
cross_entropy = tf.nn.softmax_cross_entropy_with_logits(labels=one_hot_y, logits=logits)
loss_operation = tf.reduce_mean(cross_entropy)
optimizer = tf.train.AdamOptimizer(learning_rate = rate)
training_operation = optimizer.minimize(loss_operation)

correct_prediction = tf.equal(tf.argmax(logits, 1), tf.argmax(one_hot_y, 1))
accuracy_operation = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
saver = tf.train.Saver()
In [99]:
def evaluate(X_data, y_data):
    num_examples = len(X_data)
    total_accuracy = 0
    sess = tf.get_default_session()
    for offset in range(0, num_examples, BATCH_SIZE):
        batch_x, batch_y = X_data[offset:offset+BATCH_SIZE], y_data[offset:offset+BATCH_SIZE]
        accuracy = sess.run(accuracy_operation, feed_dict={x: batch_x, y: batch_y, keep: 1.0})
        total_accuracy += (accuracy * len(batch_x))
    return total_accuracy / num_examples

Train, Validate and Test the Model

A validation set can be used to assess how well the model is performing. A low accuracy on the training and validation sets imply underfitting. A high accuracy on the training set but low accuracy on the validation set implies overfitting.

In [113]:
### Train your model here.
### Calculate and report the accuracy on the training and validation set.
### Once a final model architecture is selected, 
### the accuracy on the test set should be calculated and reported as well.
### Feel free to use as many code cells as needed.

from sklearn.utils import shuffle

with tf.Session() as sess:
    sess.run(tf.global_variables_initializer())
    num_examples = len(X_train_processed)
    
    print("Training...")
    print()
    for i in range(EPOCHS):
        X_train_processed, y_train_augmented = shuffle(X_train_processed, y_train_augmented)
        for offset in range(0, num_examples, BATCH_SIZE):
            end = offset + BATCH_SIZE
            batch_x, batch_y = X_train_processed[offset:end], y_train_augmented[offset:end]
            sess.run(training_operation, feed_dict={x: batch_x, y: batch_y, keep: 0.75})
            
        training_accuracy = evaluate(X_train_processed, y_train_augmented)
        validation_accuracy = evaluate(X_valid_processed, y_valid)
        print("EPOCH {} ...".format(i+1))
        print("Training Accuracy = {:.3f}".format(training_accuracy))
        print("Validation Accuracy = {:.3f}".format(validation_accuracy))
        print()
        
    saver.save(sess, './lenet')
    print("Model saved")
Training...

EPOCH 1 ...
Training Accuracy = 0.978
Validation Accuracy = 0.920

EPOCH 2 ...
Training Accuracy = 0.981
Validation Accuracy = 0.922

EPOCH 3 ...
Training Accuracy = 0.988
Validation Accuracy = 0.939

EPOCH 4 ...
Training Accuracy = 0.992
Validation Accuracy = 0.950

EPOCH 5 ...
Training Accuracy = 0.992
Validation Accuracy = 0.958

EPOCH 6 ...
Training Accuracy = 0.994
Validation Accuracy = 0.956

EPOCH 7 ...
Training Accuracy = 0.992
Validation Accuracy = 0.958

EPOCH 8 ...
Training Accuracy = 0.983
Validation Accuracy = 0.931

EPOCH 9 ...
Training Accuracy = 0.979
Validation Accuracy = 0.918

EPOCH 10 ...
Training Accuracy = 0.993
Validation Accuracy = 0.953

Model saved
In [ ]:
 

Step 3: Test a Model on New Images

To give yourself more insight into how your model is working, download at least five pictures of German traffic signs from the web and use your model to predict the traffic sign type.

You may find signnames.csv useful as it contains mappings from the class id (integer) to the actual sign name.

In [114]:
import tensorflow as tf 
# Run the validated model against the training set
with tf.Session() as sess:
    saver.restore(sess, tf.train.latest_checkpoint('.'))
    test_accuracy = evaluate(X_test_processed, y_test)
    print("Test Accuracy = {:.3f}".format(test_accuracy))
INFO:tensorflow:Restoring parameters from .\lenet
Test Accuracy = 0.932

Load and Output the Images

In [115]:
### Load the images and plot them here.
### Feel free to use as many code cells as needed.

import os
import matplotlib.image as mpimg

my_array = []
my_X = []
my_y = []
for filename in os.listdir("./myimages/"):
    my_y.append(int(filename))
    filename = "./myimages/" + filename
    image = mpimg.imread(filename)
    my_array.append(image)
    plt.imshow(image)
    plt.show()
my_X = np.array(my_array)
my_y = np.array(my_y)
print(my_X.shape)

my_X_processed = processimage(my_X)
my_X_processed = normalize(my_X_processed)
print(my_X_processed.shape)
print(my_y)   
(7, 32, 32, 3)
(7, 32, 32, 1)
[ 0 14 24 25 35 40  7]

Predict the Sign Type for Each Image

In [116]:
### Run the predictions here and use the model to output the prediction for each image.
### Make sure to pre-process the images with the same pre-processing pipeline used earlier.
### Feel free to use as many code cells as needed.
prob = tf.nn.softmax(logits)
top_k = tf.nn.top_k(prob, k=5)

def softmax_eval(X_data):
    num_examples = len(X_data)
    total_accuracy = 0
    sess = tf.get_default_session()
    for offset in range(0, num_examples, BATCH_SIZE):
        batch_x = X_data[offset:offset+BATCH_SIZE]
        pred = sess.run(top_k, feed_dict={x: X_data.astype(np.float32), keep_prob:1.00})
    return pred

Analyze Performance

In [117]:
### Calculate the accuracy for these 5 new images. 
### For example, if the model predicted 1 out of 5 signs correctly, it's 20% accurate on these new images.

with tf.Session() as sess:
    saver.restore(sess, tf.train.latest_checkpoint('.'))
    my_classes = sess.run(logits, feed_dict={x: my_X_processed, keep : 1.0})
    my_accuracy = evaluate(my_X_processed, my_y)
    print("Test Accuracy = {:.3f}".format(my_accuracy))
    
INFO:tensorflow:Restoring parameters from .\lenet
Test Accuracy = 0.857

Output Top 5 Softmax Probabilities For Each Image Found on the Web

For each of the new images, print out the model's softmax probabilities to show the certainty of the model's predictions (limit the output to the top 5 probabilities for each image). tf.nn.top_k could prove helpful here.

The example below demonstrates how tf.nn.top_k can be used to find the top k predictions for each image.

tf.nn.top_k will return the values and indices (class ids) of the top k predictions. So if k=3, for each sign, it'll return the 3 largest probabilities (out of a possible 43) and the correspoding class ids.

Take this numpy array as an example. The values in the array represent predictions. The array contains softmax probabilities for five candidate images with six possible classes. tf.nn.top_k is used to choose the three classes with the highest probability:

# (5, 6) array
a = np.array([[ 0.24879643,  0.07032244,  0.12641572,  0.34763842,  0.07893497,
         0.12789202],
       [ 0.28086119,  0.27569815,  0.08594638,  0.0178669 ,  0.18063401,
         0.15899337],
       [ 0.26076848,  0.23664738,  0.08020603,  0.07001922,  0.1134371 ,
         0.23892179],
       [ 0.11943333,  0.29198961,  0.02605103,  0.26234032,  0.1351348 ,
         0.16505091],
       [ 0.09561176,  0.34396535,  0.0643941 ,  0.16240774,  0.24206137,
         0.09155967]])

Running it through sess.run(tf.nn.top_k(tf.constant(a), k=3)) produces:

TopKV2(values=array([[ 0.34763842,  0.24879643,  0.12789202],
       [ 0.28086119,  0.27569815,  0.18063401],
       [ 0.26076848,  0.23892179,  0.23664738],
       [ 0.29198961,  0.26234032,  0.16505091],
       [ 0.34396535,  0.24206137,  0.16240774]]), indices=array([[3, 0, 5],
       [0, 1, 4],
       [0, 5, 1],
       [1, 3, 5],
       [1, 4, 3]], dtype=int32))

Looking just at the first row we get [ 0.34763842, 0.24879643, 0.12789202], you can confirm these are the 3 largest probabilities in a. You'll also notice [3, 0, 5] are the corresponding indices.

In [119]:
### Print out the top five softmax probabilities for the predictions on the German traffic sign images found on the web. 
### Feel free to use as many code cells as needed.

### Visualize the softmax probabilities here.
### Feel free to use as many code cells as needed.

float_formatter = lambda x: "%.2f" % x
np.set_printoptions(formatter={'float_kind':float_formatter})

with tf.Session() as sess:
    probability = sess.run(tf.nn.top_k(tf.nn.softmax(my_classes), k=5, sorted=True))
    
for i in range(len(probability[0])):
    print('For image ', i, 'The predicted classes were: ', probability[1][i], 'with probabilities of:',  probability[0][i])
    if probability[1][i][0] == my_y[i]:
        print("Image ", i, " was class ", my_y[i], 'and the network correctly predicted it as class ', probability[1][i][0])
    else:
        print("Image ", i, " was class ", my_y[i], 'and the network DID NOT correctly predict it as class ', probability[1][i][0])
For image  0 The predicted classes were:  [0 4 1 8 5] with probabilities of: [1.00 0.00 0.00 0.00 0.00]
Image  0  was class  0 and the network correctly predicted it as class  0
For image  1 The predicted classes were:  [14  3 34 17 32] with probabilities of: [1.00 0.00 0.00 0.00 0.00]
Image  1  was class  14 and the network correctly predicted it as class  14
For image  2 The predicted classes were:  [24 18 29 30 11] with probabilities of: [1.00 0.00 0.00 0.00 0.00]
Image  2  was class  24 and the network correctly predicted it as class  24
For image  3 The predicted classes were:  [25 29 31 30 24] with probabilities of: [1.00 0.00 0.00 0.00 0.00]
Image  3  was class  25 and the network correctly predicted it as class  25
For image  4 The predicted classes were:  [35 34  9 36  3] with probabilities of: [1.00 0.00 0.00 0.00 0.00]
Image  4  was class  35 and the network correctly predicted it as class  35
For image  5 The predicted classes were:  [40 12 21 11  1] with probabilities of: [1.00 0.00 0.00 0.00 0.00]
Image  5  was class  40 and the network correctly predicted it as class  40
For image  6 The predicted classes were:  [38 14  2  8  3] with probabilities of: [0.97 0.03 0.00 0.00 0.00]
Image  6  was class  7 and the network DID NOT correctly predict it as class  38

Project Writeup

Once you have completed the code implementation, document your results in a project writeup using this template as a guide. The writeup can be in a markdown or pdf file.

Note: Once you have completed all of the code implementations and successfully answered each question above, you may finalize your work by exporting the iPython Notebook as an HTML document. You can do this by using the menu above and navigating to \n", "File -> Download as -> HTML (.html). Include the finished document along with this notebook as your submission.


Step 4 (Optional): Visualize the Neural Network's State with Test Images

This Section is not required to complete but acts as an additional excersise for understaning the output of a neural network's weights. While neural networks can be a great learning device they are often referred to as a black box. We can understand what the weights of a neural network look like better by plotting their feature maps. After successfully training your neural network you can see what it's feature maps look like by plotting the output of the network's weight layers in response to a test stimuli image. From these plotted feature maps, it's possible to see what characteristics of an image the network finds interesting. For a sign, maybe the inner network feature maps react with high activation to the sign's boundary outline or to the contrast in the sign's painted symbol.

Provided for you below is the function code that allows you to get the visualization output of any tensorflow weight layer you want. The inputs to the function should be a stimuli image, one used during training or a new one you provided, and then the tensorflow variable name that represents the layer's state during the training process, for instance if you wanted to see what the LeNet lab's feature maps looked like for it's second convolutional layer you could enter conv2 as the tf_activation variable.

For an example of what feature map outputs look like, check out NVIDIA's results in their paper End-to-End Deep Learning for Self-Driving Cars in the section Visualization of internal CNN State. NVIDIA was able to show that their network's inner weights had high activations to road boundary lines by comparing feature maps from an image with a clear path to one without. Try experimenting with a similar test to show that your trained network's weights are looking for interesting features, whether it's looking at differences in feature maps from images with or without a sign, or even what feature maps look like in a trained network vs a completely untrained one on the same sign image.

Combined Image

Your output should look something like this (above)

In [106]:
### Visualize your network's feature maps here.
### Feel free to use as many code cells as needed.

# image_input: the test image being fed into the network to produce the feature maps
# tf_activation: should be a tf variable name used during your training procedure that represents the calculated state of a specific weight layer
# activation_min/max: can be used to view the activation contrast in more detail, by default matplot sets min and max to the actual min and max values of the output
# plt_num: used to plot out multiple different weight feature map sets on the same block, just extend the plt number for each new feature map entry

def outputFeatureMap(image_input, tf_activation, activation_min=-1, activation_max=-1 ,plt_num=1):
    # Here make sure to preprocess your image_input in a way your network expects
    # with size, normalization, ect if needed
    # image_input =
    # Note: x should be the same name as your network's tensorflow data placeholder variable
    # If you get an error tf_activation is not defined it may be having trouble accessing the variable from inside a function
    activation = tf_activation.eval(session=sess,feed_dict={x : image_input})
    featuremaps = activation.shape[3]
    plt.figure(plt_num, figsize=(15,15))
    for featuremap in range(featuremaps):
        plt.subplot(6,8, featuremap+1) # sets the number of feature maps to show on each row and column
        plt.title('FeatureMap ' + str(featuremap)) # displays the feature map number
        if activation_min != -1 & activation_max != -1:
            plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", vmin =activation_min, vmax=activation_max, cmap="gray")
        elif activation_max != -1:
            plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", vmax=activation_max, cmap="gray")
        elif activation_min !=-1:
            plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", vmin=activation_min, cmap="gray")
        else:
            plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", cmap="gray")
In [ ]: